home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / misc / tds-2.04.lha / TDS / Examples / Lattice / example.c next >
C/C++ Source or Header  |  1994-08-31  |  128b  |  14 lines

  1. /* example.c */
  2.  
  3. #include <stdio.h>
  4.  
  5. int
  6. main(argc,argv)
  7. int argc;
  8. char *argv[];
  9. {
  10.   printf("Hello World !\n");
  11.   return(0);
  12. }
  13.  
  14.